home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / basic / fglqbx10.zip / 07-05.BAS < prev    next >
BASIC Source File  |  1991-06-06  |  218b  |  20 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode 19
  7.  
  8. FGsetcolor 14
  9. FGtext "yellow", 6
  10.  
  11. FGlocate 0, 0
  12. FGsetcolor 10
  13. FGtext " green", 6
  14. FGwaitkey
  15.  
  16. FGsetmode OldMode
  17. FGreset
  18.  
  19. END
  20.